home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / NeXTtext / text / spell.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-06  |  496 b   |  19 lines

  1. #ifndef SPELL_H
  2. #define SPELL_H
  3.  
  4. #import <stdio.h>
  5.  
  6. extern char **SPbestmatch(char *s, char *table[], int tabsize, int (*metric)());
  7. extern char **SPspellFile(char *word, FILE *f, int ignoreCase);
  8. extern char **SPSpellFile(char *s, char *filename, int ignoreCase);
  9. extern char *SPbestpath( char *path );
  10. extern int SPwagfisch(register char *s, register char *t);
  11. extern int SPmorgan(register char *s, register char *t);
  12.  
  13. extern int SPinitial;
  14. extern int SPmaxdistance;
  15.  
  16. #define MAXTAB 64
  17.  
  18. #endif
  19.